home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / Resound / InfoManager.h < prev    next >
Encoding:
Text File  |  1992-04-03  |  689 b   |  28 lines

  1.  
  2. /* InfoManager
  3.     April 2
  4.     
  5.     The InfoManager handles the Information Window, which contains stuff like
  6.     the sound type and sound length, file name, and whether or not the sound
  7.     is fragmented.  The compact button on the information panel, however,
  8.     goes to the edit controller for the time being. :(
  9.     
  10.  */
  11.  
  12. #import <objc/Object.h>
  13.  
  14. @interface InfoManager:Object
  15. {
  16.     id    Samples;                            // samples field
  17.     id    Fragmented;                            // fragmented field
  18.     id    Channels;                            // channels field
  19.     id    Seconds;                            // etc.
  20.     id    SoundType;
  21. }
  22.  
  23. - NoWindow;                                    // No sound is currently open
  24. - ChangeInfo:ThisSound;                        // Sound is open, update info for
  25.                                             // sound ThisSound.
  26.  
  27. @end
  28.